6b90ba1221213b8fe3364864def9b2714b08e1cf,subprojects/gradle-core/src/main/groovy/org/gradle/configuration/ImplicitTasksConfigurer.java,ImplicitTasksConfigurer,execute,#ProjectInternal#,28
Before Change
task.setGroup("help");
task = tasks.add("dependencies", DependencyReportTask.class);
task.setDescription(String.format("Displays a list of the dependencies of %s.", project));
task.setGroup("help");
task = tasks.add("properties", PropertyReportTask.class);
task.setDescription(String.format("Displays a list of the properties of %s.", project));
task.setGroup("help");
After Change
task = tasks.add("properties", PropertyReportTask.class);
task.setDescription(String.format("Displays a list of the properties of %s.", project));
task.setGroup(HELP_GROUP);
}
}